  .center-container {
    display: flex; /* Use Flexbox for centering */
    justify-content: center;
    align-items: center;
    height: 40vh;
    width: 100%;   /* Full width of the parent or viewport */
    margin: 0;     /* Remove default margin */
  }

  .outer {
    width: 300px;
    height: 250px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
    position: relative;
    margin: 30px;
  }
  
  .card {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #002025;
    background-size: 20px 20px;
    background: #2c2d44;
    background-image: -moz-linear-gradient(45deg, #4b3c5f 2%, #012930 100%);
    background-image: -webkit-linear-gradient(45deg, #4b3c5f 2%, #012930 100%);
    background-image: linear-gradient(145deg, #4b3c5f 2%, #012930 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  }
  
  .ray {
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.2;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
  }
  
  .card .text {
    font-family: "Varino";
    font-size: 2.7rem;
    background: linear-gradient(45deg, #a3a3a3 4%, #fff, #000);
    background-clip: text;
    color: transparent;
  }

  .text-bottom {
    font-family: "Nasa";
    font-size: 1em;
    background-color: #fff;
    background-clip: text;
    color: transparent;
  }